{% extends 'base.html' %} {% load static %} {% block title %}Review #{{ review.id }} Details - AI Code Reviewer{% endblock %} {% block extra_head %} {% endblock %} {% block content %}
Back to History

Code Review Report Details

Review submitted by {{ review.user.username }} on {{ review.created_at|date:"Y-m-d H:i" }}

Download PDF Report

Submitted Code

{{ review.get_language_display }}
{{ review.code }}
{{ review.score_security }} Security
{{ review.score_performance }} Performance
{{ review.score_readability }} Readability
{{ review.score_overall }} Overall

Review Report

{{ review_html|safe }}
AI-corrected version of the code.

Hi! I've analyzed your code. Click the "Report" tab to see scores, security issues, and clean code suggestions. Ask me anything here about the review or optimizations!

{% for msg in chat_messages %} {% if msg.role == 'user' %}
{{ msg.content_html|safe }} {{ msg.created_at|date:"H:i" }}
{% else %}
{{ msg.content_html|safe }} {{ msg.created_at|date:"H:i" }}
{% endif %} {% endfor %}
{% endblock %} {% block extra_js %} {% endblock %}